home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / quicktime / quicktime vr / vrcursors / testfunctions.h < prev    next >
Encoding:
Text File  |  2000-06-23  |  1.0 KB  |  34 lines

  1. //////////
  2. //
  3. //    File:        TestFunctions.h
  4. //
  5. //    Contains:    Insert test functions prototypes and constants into this file.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1994-1997 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //
  13. //       <1>         11/27/96    rtm        first file
  14. //       
  15. //////////
  16.  
  17. // header files
  18. #include "QTUtilities.h"
  19. #include "QTVRUtilities.h"
  20. #include <QuickTimeVR.h>
  21. #include <Resources.h>
  22.  
  23. // constants for "undefined" hot spots, ***both panoramas and objects***
  24. // (these are listed in VRPWQTVR2.0, p. A-2)
  25. #define kCursID_MouseOverMiscHS        -19690        // miscellaneous hot spots ('misc')
  26. #define kCursID_MouseDownOnMiscHS    -19689
  27. #define kCursID_MouseUpOnMiscHS        -19688
  28. #define kCursID_MouseOverUndefHS    -19687        // undefined hot spots ('undf', other undefined, or missing type)
  29. #define kCursID_MouseDownOnUndefHS    -19686
  30. #define kCursID_MouseUpOnUndefHS    -19685
  31.  
  32. // function prototypes
  33. PASCAL_RTN OSErr                    MyMouseOverHotSpotProc (QTVRInstance theInstance, UInt32 theHotSpotID, UInt32 theFlags, long theRefCon);
  34.